home *** CD-ROM | disk | FTP | other *** search
/ Mac Mania 2 / MacMania 2.toast / Demo's / Tools&Utilities / Programming / PowerLisp 1.1 / examples / compile-libraries.lisp < prev    next >
Encoding:
Text File  |  1994-03-25  |  978 b   |  59 lines  |  [TEXT/ROSA]

  1. ;;
  2. ;;    This file compiles all the standard libraries
  3. ;;
  4.  
  5. (compile-file 
  6.     ":library:assembler.lisp" 
  7.     :output-file ":library:assembler.fasl"
  8.     :print t)
  9.  
  10. (compile-file 
  11.     ":library:compiler.lisp" 
  12.     :output-file ":library:compiler.fasl"
  13.     :print t)
  14.  
  15. (compile-file 
  16.     ":library:cl.lisp" 
  17.     :output-file ":library:cl.fasl"
  18.     :print t)
  19.  
  20. (compile-file 
  21.     ":library:backquote.lisp" 
  22.     :output-file ":library:backquote.fasl"
  23.     :print t)
  24.  
  25. (compile-file 
  26.     ":library:defpackage.lisp" 
  27.     :output-file ":library:defpackage.fasl"
  28.     :print t)
  29.  
  30. (compile-file 
  31.     ":library:structures.lisp" 
  32.     :output-file ":library:structures.fasl"
  33.     :print t)
  34.  
  35. (compile-file 
  36.     ":library:format.lisp" 
  37.     :output-file ":library:format.fasl"
  38.     :print t)
  39.  
  40. (compile-file 
  41.     ":library:describe.lisp" 
  42.     :output-file ":library:describe.fasl"
  43.     :print t)
  44.  
  45. (compile-file 
  46.     ":library:loop.lisp" 
  47.     :output-file ":library:loop.fasl"
  48.     :print t)
  49.  
  50. (compile-file 
  51.     ":library:graphics.lisp" 
  52.     :output-file ":library:graphics.fasl"
  53.     :print t)
  54.  
  55.  
  56.  
  57.  
  58.  
  59.